@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allison:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Glory:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
:root {
    --primary-color: #3aa087;
    --primary2-color: #4ebfa3;
    --primary-light-color: #fefbf0;
    --secondary-color: #4ea3bf;
    --tertiary-color: #3b3b3b;
    --tertiary-dark-color: #333333;
    --quaternary-color: red;
    --text-white: #ffffff;
    --text-gray: #949393;
    --text-gray-two: #707070;
    --bg-gray: #f5f5f5;
}

* {
    font-family: "Glory";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.text-16 {
    font-size: 14px;
}

.text-26 {
    font-size: 20px;
}

.text-white {
    color: white;
}

.f-w-3 {
    font-weight: 300 !important;
}

.f-w-4 {
    font-weight: 400 !important;
}

.f-w-5 {
    font-weight: 500 !important;
}

.f-w-6 {
    font-weight: 600 !important;
}

.f-w-7 {
    font-weight: 700 !important;
}

.head-one {
    font-size: 45px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .head-one {
        font-size: 23px;
    }
}

.head-two {
    font-size: 30px;
    padding-bottom: 30px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .head-two {
        font-size: 20px;
    }
}

.head-three {
    font-size: 23px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .head-three {
        font-size: 20px;
    }
}

.head-four {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .head-four {
        font-size: 16px;
    }
}

.head_primary {
    color: var(--primary-color);
}

.head_secondary {
    color: var(--secondary-color);
}

.head_tertiary {
    color: var(--tertiary-color);
}

.head_dark {
    color: var(--tertiary-color);
}

.head_dark-dark {
    color: var(--tertiary-dark-color);
}

.head_gray {
    color: var(--text-gray);
}

.head_white {
    color: var(--text-white);
}

.italic {
    font-style: italic;
}

.para-one {
    font-size: 20px;
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    .para-one {
        font-size: 16px;
    }
}

.para-two {
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 575.98px) {
    .para-two {
        font-size: 13px;
    }
}

.para-three {
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 575.98px) {
    .para-three {
        font-size: 13px;
    }
}

.para_primary {
    color: var(--primary-color);
}

.para_secondary {
    color: var(--secondary-color);
}

.para_tertiary {
    color: var(--tertiary-color);
}

.para_green {
    color: var(--primary-color);
}

.para_gray {
    color: var(--text-gray-two);
}

.para_white {
    color: var(--text-white);
}

.para_blue {
    color: var(--primary-color);
}

.text-red {
    color: var(--secondary-color);
}

.text-red_light {
    color: #ff8cac;
}

.text-white {
    color: white;
}

.text-light {
    color: white;
}

.text-dark {
    color: black;
}

.text-gray {
    color: var(--text-gray);
}

.text-tertiary {
    color: var(--tertiary-color);
}

.text-blue {
    color: var(--primary-color);
}

.text-blue_light {
    color: #b3ddff;
}

.text-center {
    text-align: center;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-uppercase {
    text-transform: uppercase;
}

.button {
    border-radius: 5px;
    border: none;
    padding: 10px 19px;
    text-transform: capitalize;
    display: inline-block;
}

@media (max-width: 575.98px) {
    .button {
        padding: 5px 19px;
        font-size: 15px;
    }
}

.button-one {
    background: var(--primary-color);
    color: var(--tertiary-color);
    border: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.button-one i {
    position: relative;
    left: 0px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.button-one:hover {
    color: var(--secondary-color);
    background: var(--tertiary-color);
}

.button-one:hover i {
    left: 10px;
}

.button-two {
    color: white;
    background-color: var(--secondary-color);
    border: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.button-two i {
    position: relative;
    left: 0px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.button-two:hover {
    color: white;
    background-color: var(--tertiary-color);
}

.button-two:hover i {
    left: 10px;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.button-three {
    background: var(--primary-color);
    color: white;
    border: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    padding: 3px 20px;
    border-radius: 30px;
}

.button-three:hover {
    border: 1px solid var(--secondary-color);
    -webkit-box-shadow: 0px 0px 5px #a0a0a0;
    box-shadow: 0px 0px 5px #a0a0a0;
}

.p_x-1 {
    padding-right: 50px;
    padding-left: 50px;
}

.p_y-1 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.p_t-1 {
    padding-top: 50px;
}

.p_b-1 {
    padding-bottom: 50px;
}

.p_l-1 {
    padding-left: 50px;
}

.p_r-1 {
    padding-right: 50px;
}

.p_t-2 {
    padding-top: 25px;
}

.p_b-2 {
    padding-bottom: 25px;
}

.p_l-2 {
    padding-left: 25px;
}

.p_r-2 {
    padding-right: 25px;
}

.hover-one {
    display: inline-block;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    margin-bottom: 30px;
}

.hover-one::after {
    content: "";
    height: 0;
    width: 0;
    display: block;
    border-top: 6px solid var(--primary-color);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    z-index: -1;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    opacity: 1;
    z-index: 99;
}

.hover-two {
    display: inline-block;
    border-bottom: 3px solid var(--text-white);
    position: relative;
    margin-bottom: 30px;
}

.hover-two::after {
    content: "";
    height: 0;
    width: 0;
    display: block;
    border-top: 6px solid var(--text-white);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    z-index: 0;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    opacity: 1;
}

input {
    padding: 10px 20px !important;
}

textarea {
    padding: 10px 20px !important;
}

.bg-gray {
    background: #f5f5f5;
}

.link {
    display: inline-block;
}

img {
    width: 100%;
}

.my-card-margin {
    margin: 50px 0px;
}

.my-card-padding {
    padding: 50px 0px;
}

#navbar {
    width: 100%;
    z-index: 99999;
    position: absolute;
    top: 0px;
    -webkit-transition: 0.3s ease-in-out 0.2s;
    transition: 0.3s ease-in-out 0.2s;
}

.header-top {
    background: var(--primary2-color) !important;
    padding: 5px 0px;
}

.header-top-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-top-box .logo span {
    color: white;
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .header-top-box .social-media {
        margin-top: 15px;
    }
}

.header-top-box .social-media .media-box a {
    padding: 0px 7px;
    font-size: 18px;
    color: white !important;
}

.header-top-box .info {
    padding: 3px 3px;
    border-radius: 7px;
    font-size: 16px;
    color: white;
}

.header-top-box .info p {
    font-size: 16px;
}

.header-top-box .info i {
    color: var(--primary-color);
}

.header-top-box .info span {
    font-size: 20px;
    color: var(--primary2-color);
    padding-right: 5px;
    color: white;
}

.header {
    background: white;
}

.header .logo {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: 5px 0px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.header .logo img {
    height: 50px;
    width: auto;
}

@media (max-width: 767.98px) {
    .header .logo img {
        height: 50px;
    }
}

.header .logo span {
    padding: 0px 20px;
}

.header_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .header_box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.header_box .links {
    padding: 0px 0px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .header_box .links {
        position: absolute;
        top: 87px;
        left: 0px;
        width: 100%;
        background: white;
        padding: 15px 50px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        z-index: 1;
        display: none;
    }
}

@media (max-width: 767.98px) {
    .header_box .links {
        top: 84px;
        padding: 15px 25px;
        z-index: 2;
    }
}

.header_box .links ul {
    padding: 10px 25px;
    padding-right: 50px;
}

@media (max-width: 991.98px) {
    .header_box .links ul {
        padding: 0px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.header_box .links ul li {
    display: inline-block;
    padding: 0px 5px;
}

.header_box .links ul li a {
    display: inline-block;
    padding: 7px 20px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 17px;
    color: var(--tertiary-color);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    border-bottom: 2px solid transparent;
}

@media (max-width: 991.98px) {
    .header_box .links ul li a {
        padding: 15px 15px;
        padding-left: 0px;
    }
}

@media (max-width: 767.98px) {
    .header_box .links ul li a {
        top: 57px;
        padding: 10px 25px;
        padding-left: 0px;
    }
}

.header_box .links ul li a:hover {
    color: var(--primary-color);
}

.header_box .links ul li a.active {
    color: var(--primary2-color);
}

@media (max-width: 991.98px) {
    .header_box .social-media {
        margin-top: 15px;
    }
}

.header_box .social-media .media-box a {
    padding: 0px 7px;
    font-size: 20px;
}

.header_box .social-media .media-box .fb {
    color: #3b5998;
}

.header_box .social-media .media-box .ins {
    background: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.header_box .social-media .media-box .tweet {
    color: #1da1f2;
}

@media (max-width: 991.98px) {
    .header_box .enquiry-btn {
        padding: 20px 0px;
    }
}

.header_box .enquiry-btn .button {
    margin-left: 15px;
}

@media (max-width: 991.98px) {
    .header_box .enquiry-btn .button {
        margin: 0px;
    }
}

.menu {
    display: none;
}

@media (max-width: 991.98px) {
    .menu {
        display: block;
        -ms-flex-line-pack: end;
        align-content: flex-end;
    }
}

.menu-btn {
    border: none;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 50px;
}

@media (max-width: 767.98px) {
    .menu-btn:hover span:first-child {
        width: 35px;
    }
}

.menu-btn:hover span:last-child {
    width: 40px;
}

@media (max-width: 767.98px) {
    .menu-btn:hover span:last-child {
        width: 35px;
    }
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 35px;
    background: var(--tertiary-color);
    margin-bottom: 7px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
    .menu-btn span {
        margin-bottom: 6px;
        width: 30px;
    }
}

.festivalSlider {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    background: #eaeaea;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .festivalSlider {
        padding-top: 80px;
    }
}

.festivalSlider::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    height: 100%;
    width: 50%;
    background: var(--primary2-color);
    z-index: -1;
    -webkit-clip-path: polygon(30% 0, 100% 49%, 32% 100%, 0 100%, 0 0);
    clip-path: polygon(30% 0, 100% 49%, 32% 100%, 0 100%, 0 0);
    -webkit-filter: drop-shadow(0px 0px 5px black);
    filter: drop-shadow(0px 0px 5px black);
}

@media (max-width: 991.98px) {
    .festivalSlider::after {
        -webkit-clip-path: polygon(30% 0, 100% 21%, 30% 42%, 0 42%, 0 0);
        clip-path: polygon(30% 0, 100% 21%, 30% 42%, 0 42%, 0 0);
    }
}

.festivalSlider .festival {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .festivalSlider .festival {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (max-width: 767.98px) {
    .festivalSlider .festival {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.festivalSlider .festival-text {
    width: 100%;
    padding: 0px 15px;
    position: relative;
    z-index: 9;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

@media (max-width: 991.98px) {
    .festivalSlider .festival-text {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .festivalSlider .festival-text {
        width: 100%;
    }
}

.festivalSlider .festival-img {
    padding: 15px 0px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 60%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .festivalSlider .festival-img {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .festivalSlider .festival-img {
        width: 70%;
    }
}

.festivalSlider .festival-img img {
    height: 100%;
    width: 100%;
}

.festivalSlider .festival-sub {
    padding: 15px 0px;
    color: #707070;
}

@media (max-width: 991.98px) {
    .festivalSlider .festival-sub {
        padding-top: 15px 0px;
    }
}

.festivalSlider .owl-stage .active .head-animation {
    opacity: 0;
    -webkit-animation: slide-head 0.3s ease-in-out 1s normal forwards;
    animation: slide-head 0.3s ease-in-out 1s normal forwards;
}

.festivalSlider .owl-stage .active .button-animation {
    opacity: 0;
    -webkit-animation: slide-botton 0.5s ease-in-out 1.3s normal forwards;
    animation: slide-botton 0.5s ease-in-out 1.3s normal forwards;
}

.festivalSlider .owl-stage .active .banner-img img {
    opacity: 0;
    -webkit-animation: slide-img 0.8s ease-in-out 0.1s normal forwards;
    animation: slide-img 0.8s ease-in-out 0.1s normal forwards;
}

.gj-datepicker-bootstrap [role="right-icon"] button {
    height: 100%;
    border-radius: 0px;
    position: relative;
}

.gj-datepicker-bootstrap [role="right-icon"] button:hover {
    border: 1px solid #ced4da;
}

.gj-datepicker-bootstrap [role="right-icon"] button i {
    color: var(--tertiary-color);
}

.gj-datepicker-bootstrap [role="right-icon"] button .gj-icon {
    position: absolute;
    font-size: 21px;
    width: 38px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.gj-datepicker-bootstrap [role="right-icon"] button {
    width: 38px !important;
}

.gj-unselectable {
    width: auto !important;
}

input {
    width: 100%;
    height: auto !important;
}

input.datepicker {
    border-radius: 0px;
}

.input-group-append .btn-outline-secondary {
    height: 100%;
    border-radius: 0px;
    border: 1px solid #dee2e6 !important;
    position: relative;
    background: white;
}

.input-group-append .btn-outline-secondary .gj-icon {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.banner-form {
    background: white;
    padding: 25px;
    padding-top: 35px;
    margin-bottom: 20px;
    border-radius: 5px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.banner-form h1 {
    padding: 10px 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-form form input[name="seats"] {
    display: none;
}

.banner-form form input[name="seats"]:checked ~ label {
    background: var(--primary-color);
}

.banner-form form input[name="seats"]:checked ~ label p {
    color: white !important;
}

.banner-form form input[name="seats"] ~ label {
    border-radius: 5px;
    padding: 15px;
    margin: 5px;
    -webkit-box-shadow: 0px 0px 3px #eaeaea;
    box-shadow: 0px 0px 3px #eaeaea;
    text-align: center;
    cursor: pointer;
}

.banner-form form input[name="seats"] ~ label .book-box img {
    height: 50px;
    width: 50px;
    margin-right: 30px;
}

.banner-form form .bike,
.banner-form form .car {
    border-radius: 5px;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 3px #eaeaea;
    box-shadow: 0px 0px 3px #eaeaea;
    text-align: center;
    cursor: pointer;
}

.banner-form form .bike .book-box img,
.banner-form form .car .book-box img {
    height: 50px;
    width: 50px;
    margin-right: 30px;
}

.banner-form form label {
    font-size: 14px;
    padding: 5px;
    color: var(--tertiary-color);
}

.banner-form form .icon {
    position: absolute;
    height: 100%;
    top: 50%;
    left: 0px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 10px;
}

.banner-form form .icon img.calendar {
    height: 25px;
    width: auto;
}

.banner-form form .icon i.point {
    color: var(--secondary-color);
}

.banner-form form .icon i.map-point {
    color: var(--quaternary-color);
}

.banner-form form input {
    border-radius: 5px;
    padding: 10px 35px !important;
    padding-right: 10px !important;
    font-size: 14px;
}

.about_page {
    padding-top: 100px;
    background: var(--primary-light-color);
}

.about-home .title,
.about_page .title {
    padding-bottom: 100px;
}

@media (max-width: 575.98px) {
    .about-home .title,
    .about_page .title {
        padding-bottom: 50px;
    }
}

.about-home .about-image,
.about_page .about-image {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.about-home .about-image:hover,
.about_page .about-image:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 1199.98px) {
    .about-home .about-image,
    .about_page .about-image {
        padding-top: 30px;
    }
}

.room-active {
    display: block !important;
}

.room-active .rooms-box {
    -webkit-animation: rooms-toggle 0.7s linear 0.2s forwards;
    animation: rooms-toggle 0.7s linear 0.2s forwards;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.rooms {
    padding-bottom: 100px;
}

.rooms-titles {
    padding-bottom: 100px;
}

@media (max-width: 575.98px) {
    .rooms-titles {
        padding-bottom: 50px;
    }
}

.rooms-titles .collaps-btn-edit {
    position: relative;
    z-index: 1;
}

.rooms-titles .collaps-btn-edit::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.466);
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.rooms-titles .collaps-btn-edit span {
    position: relative;
    z-index: 2;
}

.rooms-titles .collaps-btn-edit img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.rooms-titles button {
    border: none;
    background: none;
    padding: 3px 20px;
    margin: 0px 20px;
    border: 2px solid transparent;
    border-radius: 3px;
    font-weight: 500;
    color: white;
}

@media (max-width: 575.98px) {
    .rooms-titles button {
        margin: 0px 0px;
        padding: 3px 13px !important;
    }
}

@media (max-width: 400px) {
    .rooms-titles button {
        margin: 0px 0px;
        padding: 3px 15px;
    }
}

.rooms-titles button:hover {
    border: 2px solid white;
    font-weight: 500;
    background: var(--primary-color);
    color: white;
    -webkit-box-shadow: 0px 0px 8px #b2b2b2;
    box-shadow: 0px 0px 8px #b2b2b2;
    border-radius: 3px;
    font-weight: 500;
}

.rooms-titles .active {
    border: 2px solid white;
    font-weight: 500;
    background: var(--primary-color);
    color: white;
    -webkit-box-shadow: 0px 0px 8px #b2b2b2;
    box-shadow: 0px 0px 8px #b2b2b2;
    padding: 3px 20px;
    border-radius: 3px;
}

.rooms-titles .active img {
    display: none !important;
}

.rooms-box {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media (max-width: 1199.98px) {
    .rooms-box {
        margin: 0px;
        margin-bottom: 30px;
    }
}

.rooms-box:hover img {
    -webkit-transform: scale(1.05) !important;
    transform: scale(1.05) !important;
}

.rooms-box .image {
    position: relative;
}

.rooms-box .image img {
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.rooms-box .image p {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--primary2-color);
    color: white;
    padding: 2px 5px;
}

.rooms-info {
    padding: 15px 0px;
}

.rooms-info h1 {
    color: var(--primary2-color);
}

.rooms-info a {
    color: var(--primary-color) !important;
}

.rooms-info a i {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    position: relative;
    left: 0px;
}

.rooms-info a:hover {
    color: var(--text-primary) !important;
}

.rooms-info a:hover i {
    left: 5px;
}

.rooms-info p {
    padding-bottom: 15px;
}

.room-from .form-box .flex-it {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.room-from .form-box .info-box {
    display: fles;
    padding: 15px;
    background: var(--primary-color);
}

.room-from .form-box .info-box img {
    height: 70px;
    width: auto;
}

.room-from .form-box .icon {
    border-right: 1px solid #e0e4e8;
    position: absolute;
    height: 100%;
    top: 50%;
    left: 0px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 5px;
    background: #e0e4e8;
}

.room-from .form-box .icon img.calendar {
    height: 25px;
    width: auto;
}

.room-from .form-box input {
    border-radius: 0px;
    padding: 10px 45px !important;
    font-size: 14px;
}

.room-from .form-box textarea {
    height: 44px;
    width: 100%;
    border-radius: 0px;
    padding: 10px 15px !important;
    font-size: 14px;
}

.room-from .form-box select {
    border-radius: 0px;
    padding: 10px 45px !important;
    font-size: 14px;
}

.room-from .form-box button {
    width: 100%;
    border-radius: 0px;
}

.room-from .form-box button:hover {
    border: 1px solid var(--secondary-color);
}

.reviews {
    z-index: 0;
    padding: 100px 0px !important;
    background: #f9f9f9;
}

.reviews span.cotation {
    font-size: 35px;
}

.reviews .info-box {
    padding: 25px;
    padding-bottom: 50px;
    border-radius: 5px;
    background: #7033ff08;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.reviews_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.reviews-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.reviews-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    width: 100%;
}

.reviews-box:hover .info-box {
    -webkit-box-shadow: -4px 3px 15px #c6c6c6 !important;
    box-shadow: -4px 3px 15px #c6c6c6 !important;
}

@media (max-width: 991.98px) {
    .reviews-box {
        width: 100%;
    }
}

.reviews-image {
    -ms-flex-item-align: end;
    align-self: flex-end;
    border-radius: 50%;
    position: relative;
    bottom: 50px;
    right: 50px;
    margin: 0px 15px;
    z-index: 0;
    -webkit-box-shadow: 0px 2px 5px #00000071;
    box-shadow: 0px 2px 5px #00000071;
    background: white;
}

.reviews-image::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    top: 0px;
    left: 0px;
    z-index: -1;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 50%);
    clip-path: polygon(100% 0, 0 0, 50% 50%);
}

.reviews-image img {
    height: 100px;
    width: auto !important;
    border-radius: 50%;
    padding: 7px 7px;
}

.reviews-data {
    padding: 25px;
    position: relative;
    z-index: 0;
}

.footer {
    position: relative;
    background: #eaeaea;
    padding: 75px 0px;
    padding-bottom: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .logo {
    padding: 15px;
    background: #4ebfa3;
    width: 100%;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    position: relative;
}

.footer .logo::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 20px;
    background: var(--primary-color);
    top: 0px;
    left: 0px;
    border-radius: inherit;
    z-index: 1;
}

.footer .logo img {
    height: 80px;
    width: auto;
    border-radius: 50%;
}

.footer-contact .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.footer-contact .box i {
    padding-right: 10px;
    font-size: 18px;
}

.footer .social-media .media-box a {
    padding: 10px;
    font-size: 23px;
    background: white;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.footer .social-media .media-box a i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.footer .social-media .media-box a ~ a {
    margin: 0px 10px;
}

.footer .social-media .media-box .fb {
    color: #3b5998;
}

.footer .social-media .media-box .ins i {
    background: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.footer .social-media .media-box .tweet {
    color: #1da1f2;
}

.footer-links ul li {
    display: inline-block;
}

.footer-links ul li ~ li a {
    padding: 10px 10px;
}

.footer-links ul li a {
    display: inline-block;
    text-transform: capitalize;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-rooms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7px 0px;
}

.footer-rooms-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-rooms-box img {
    padding: 5px;
    height: 75px;
    width: auto;
}

.footer .app-store {
    padding: 20px 0px;
}

.footer .app-store a {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 15px 0px;
}

.footer .app-store a:hover {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.footer .store-image {
    height: 50px;
    width: auto;
}

.footer .app-img {
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
}

.copyright {
    padding: 25px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767.98px) {
    .copyright {
        padding-top: 15px;
    }
}

.payments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
}

@media (max-width: 767.98px) {
    .payments {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 15px;
    }
}

.payments .method {
    background: #fffffffa;
    border-radius: 5px;
    padding: 2px 7px;
    margin: 0px 2px;
}

.payments .method:first-child {
    margin-left: 15px !important;
}

.payments .method:hover img {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
}

.payments .method img {
    height: 20px;
    width: auto;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.main-services_page {
    padding-top: 25px;
}

.main-services_page .box {
    padding: 9px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-services_page .box img {
    height: 50px;
    width: auto;
}

.main-services_page .box-info {
    padding: 0px 15px;
}

.hover_image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 500px;
}

@media (max-width: 767.98px) {
    .hover_image {
        height: unset;
        height: 365px;
    }
}

@media (max-width: 575.98px) {
    .hover_image {
        height: 325px;
    }
}

.hover_image img {
    position: absolute;
    height: 300px;
    width: auto;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

@media (max-width: 1199.98px) {
    .hover_image img {
        height: 240px;
        padding: 3px;
    }
}

@media (max-width: 991.98px) {
    .hover_image img {
        height: 190px;
        padding: 2px;
    }
}

@media (max-width: 767.98px) {
    .hover_image img {
        height: 230px;
        border: 0px;
    }
}

@media (max-width: 575.98px) {
    .hover_image img {
        height: 180px;
    }
}

.hover_image img:hover {
    z-index: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border: 0px;
    -webkit-box-shadow: 2px 5px 56px white;
    box-shadow: 2px 5px 56px white;
    background-color: white;
}

.hover_image img.img_1 {
    top: 0px;
    left: 114px;
}

@media (max-width: 1199.98px) {
    .hover_image img.img_1 {
        top: 75px;
    }
}

@media (max-width: 991.98px) {
    .hover_image img.img_1 {
        top: 109px;
        left: 87px;
    }
}

@media (max-width: 767.98px) {
    .hover_image img.img_1 {
        top: 0px;
        left: 87px;
    }
}

.hover_image img.img_2 {
    right: 0px;
    bottom: 68px;
}

@media (max-width: 991.98px) {
    .hover_image img.img_2 {
        right: 322px;
        bottom: 68px;
    }
}

@media (max-width: 767.98px) {
    .hover_image img.img_2 {
        right: 0px;
        bottom: 68px;
    }
}

.hover_image img.img_3 {
    bottom: -21px;
    left: 49px;
}

@media (max-width: 991.98px) {
    .hover_image img.img_3 {
        bottom: 27px;
        left: 0px;
    }
}

@media (max-width: 767.98px) {
    .hover_image img.img_3 {
        bottom: 0px;
        left: 0px;
    }
}

.features {
    padding-bottom: 100px;
}

.features .box {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.features .box .main-image {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.features .box:hover .main-image {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.features .box:hover .info {
    top: 45%;
}

.features .box::before {
    content: "";
    height: 100%;
    width: 100%;
    background: #00000066;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.features .box .info {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 2;
}

.features .box .info img {
    height: 50px;
}

.micro {
    padding: 0px 200px;
}

@media (max-width: 1199.98px) {
    .micro {
        padding: 100px;
    }
}

@media (max-width: 991.98px) {
    .micro {
        padding: 0px;
    }
}

.micro-service {
    padding: 50px 20px;
}

@media (max-width: 991.98px) {
    .micro-service {
        padding: 50px 0px;
    }
}

@media (max-width: 767.98px) {
    .micro-service {
        padding: 20px 0px;
    }
}

@media (max-width: 767.98px) {
    .micro-service h1 {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .micro-service p {
        display: none;
    }
}

.micro-service img {
    height: 65px;
}

@media (max-width: 767.98px) {
    .micro-service img {
        height: 35px;
    }
}

.gallery-head .box {
    height: auto;
    position: relative;
    height: 200px;
    background: var(--primary2-color);
    background-position: center;
}

.gallery-head img.head {
    background: var(--primary2-color);
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.gallery-head h1 {
    position: absolute;
    width: 100%;
    display: block;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: 1;
    padding: 30px 0px;
}

img.gallery-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

img.gallery-image:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 8px #393939;
    box-shadow: 1px 1px 8px #393939;
}

li {
    list-style: none;
    text-decoration: none;
}

/* All the nitty-"Grid"dy */
ul.gallery-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(190px, 1fr)) [auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    grid-auto-rows: 209px;
    grid-gap: 15px;
    grid-auto-flow: row dense;
}

@media (max-width: 400px) {
    ul.gallery-box {
        -ms-grid-columns: (minmax(1fr, 1fr)) [auto-fit] !important;
        grid-template-columns: repeat(auto-fit, minmax(1fr, 1fr)) !important;
        grid-auto-rows: 150px;
        grid-gap: 3px;
    }
}

ul.gallery-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

ul.gallery-box a:nth-child(2n + 1) {
    -webkit-grid-column: span 2;
    grid-column: span 2;
}

.room-info-banner {
    background: var(--primary-color);
    padding: 20px;
}

.room-from {
    padding-top: 200px;
}

@media (max-width: 767.98px) {
    .room-from {
        padding-top: 100px;
    }
}

.room-from .info-box {
    margin-bottom: 15px;
}

@media (max-width: 767.98px) {
    .room-from form {
        margin-bottom: 15px;
    }
}

.room-from form .edit-btn {
    padding: 8px;
}

.contact-page-bg {
    background: #f7f7f7;
    padding-top: 100px;
}

@media (max-width: 991.98px) {
    .contact-page-bg {
        padding-top: 100px;
    }
}

.contact-page {
    padding: 50px 0px;
}

.contact-page .contact .box {
    padding: 15px;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.contact-page .contact .box:hover {
    background: #ef6f6c;
}

.contact-page .contact .box i {
    font-size: 30px;
}

.contact-page .contact .box p {
    padding: 15px 0px;
}

.contact-page .contact .active {
    background: #ef6f6c;
    color: white;
}

.feedBack {
    padding: 25px;
    background: white;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px #d2d2d2;
    box-shadow: 0px 0px 5px #d2d2d2;
}

.feedBack form label {
    padding-bottom: 10px;
    color: var(--text-gray);
}

.feedBack form input {
    border-radius: 5px !important;
    border: 1px solid var(--primary-color);
    padding: 7px 11px !important;
}

.feedBack form input::-webkit-input-placeholder {
    color: var(--primary2-color);
}

.feedBack form input:-ms-input-placeholder {
    color: var(--primary2-color);
}

.feedBack form input::-ms-input-placeholder {
    color: var(--primary2-color);
}

.feedBack form input::placeholder {
    color: var(--primary2-color);
}

.feedBack form textarea {
    border-radius: 5px !important;
    padding: 7px 11px !important;
    border: 1px solid var(--primary-color);
    height: 200px;
}

.feedBack form textarea::-webkit-input-placeholder {
    color: var(--primary2-color);
}

.feedBack form textarea:-ms-input-placeholder {
    color: var(--primary2-color);
}

.feedBack form textarea::-ms-input-placeholder {
    color: var(--primary2-color);
}

.feedBack form textarea::placeholder {
    color: var(--primary2-color);
}

.map {
    height: 520px;
    width: 100%;
    margin-top: 50px;
}

.map iframe {
    width: 100%;
}

.how {
    padding: 50px 0px;
}

.how p {
    line-height: 18px;
}

.icons-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 30px;
}

.icons-div .single-icon {
    height: 75px;
    width: 75px;
    border: 1px solid rgba(59, 59, 59, 0.3);
    text-align: center;
    line-height: 70px;
    border-radius: 50px;
    background-color: #fefbf0;
    position: relative;
}

.icons-div .single-icon img {
    height: 40px !important;
    width: auto;
    vertical-align: middle;
}

.single-icon img {
    width: auto;
    height: 50px;
}

.icons-div .single-icon:not(:last-child):after {
    content: "";
    position: absolute;
    background-color: #ddd;
    height: 1px;
    width: 170px;
    top: 50%;
    left: 122%;
}

.app-info {
    height: 550px;
    overflow: hidden;
    background: var(--primary-color);
}

.app-info:hover .app-image {
    top: -20px;
}

.app-info .app-image {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5)) !important;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5)) !important;
    border-radius: 20px;
    position: relative;
    top: 20px;
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
}

.app-info .app-image:hover {
    top: 20px;
}

.app-store {
    padding: 50px 0px;
}

.app-store a {
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 15px 0px;
}

.app-store a:hover {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.app-store img {
    height: 50px;
    width: auto;
}

.app-details {
    background: #eaeaea;
}

.app-details-box img {
    background: #f3f3f3;
}

.app-details-2 {
    background: var(--primary-color);
}

.app-details-2 img {
    background: white !important;
}

.news-details {
    line-height: 1.6;
}

.new-image {
    border-radius: 10px;
}

.new-image img {
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}

.border {
    width: 100%;
    height: 5px;
    border-bottom: 5px dotted var(--primary-color);
}

.how2 .bg {
    margin: 25px 0px;
    padding: 15px;
}

.how2-car img {
    height: 300px;
    width: auto;
}

@media (max-width: 991.98px) {
    .how2-car img {
        width: 100%;
        height: auto;
    }
}

.how2 .box {
    padding: 30px 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    border-radius: 7px;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.how2 .box::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #000000a8;
    z-index: -2;
}

.how2 .box::after {
    content: "";
    height: 0;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #4ebfa3c7;
    z-index: -1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.how2 .box:hover {
    -webkit-box-shadow: -4px 3px 15px #4ebfa3c7;
    box-shadow: -4px 3px 15px #4ebfa3c7;
}

.how2 .box:hover .image-box {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.how2 .box:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.how2 .box:hover i {
    font-size: 45px;
}

.how2 .box:hover:after {
    height: 100%;
}

.how2 .box .image-box {
    background: #4fabff;
    height: 90px;
    width: 90px;
    padding: 10px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin: 0px auto;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
    -webkit-box-shadow: 0px 0px 3px #00000075;
    box-shadow: 0px 0px 3px #00000075;
}

.how2 .box .image-box::before {
    content: "";
    height: 80%;
    width: 80%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: white;
    z-index: -1;
    -webkit-box-shadow: 3px 3px 5px #00000075;
    box-shadow: 3px 3px 5px #00000075;
}

.how2 .box .image-box_one {
    background: var(--primary-color);
}

.how2 .box .image-box_two {
    background: #7033ff !important;
}

.how2 .box .image-box_three {
    background: #e1bc29 !important;
}

.how2 .box .image-box_four {
    background: #ef6f6c !important;
}

.how2 .box h1 {
    padding: 15px 0px;
}

.how2 .box i {
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s ease-in-out 0.1s;
    transition: 0.3s ease-in-out 0.1s;
}

.how2 .box img {
    height: 100%;
    width: 100%;
    padding: 15px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.3s ease-in-out 0.1s;
    transition: 0.3s ease-in-out 0.1s;
}

.stat-info {
    position: relative;
    top: -60px;
    z-index: 11;
}

.stat-info-box {
    background: var(--primary2-color);
    border-radius: 5px;
    padding: 25px 20px;
    position: relative;
    z-index: index -3;
}

.stat-info-box::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #30967c;
    top: -20px;
    left: 0px;
    border-radius: inherit;
    z-index: -2;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.stat-info-box h1 {
    font-size: 46px;
}

.stat-info-head {
    font-size: 25px;
    line-height: 1.6;
}

.number .one {
    color: #ef6f6c;
}

.number .two {
    color: var(--secondary-color);
}

.number .three {
    color: var(--primary-color);
}

.number .four {
    color: #e1bc2e;
}

.footer-footer {
    background: #4ebfa3;
    -webkit-box-shadow: inset 0px 5px 0px #181a4678;
    box-shadow: inset 0px 5px 0px #181a4678;
}

.product-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.division-banner {
    padding: 100px 0px;
    position: relative;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.division-banner .box {
    width: 70%;
    margin: auto auto;
}

.division-banner::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #0000009c;
    z-index: -1;
}

.pop {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #00000052;
    z-index: 999;
    display: none;
}

.pop .form-box {
    position: absolute;
    min-width: 320px;
    width: 500px;
    margin: 0px auto;
    left: 50%;
    top: 100px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.pop .cancel {
    position: absolute;
    top: 0px;
    right: 25px;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.pop .cancel:hover {
    -webkit-transform: scale(1.1) rotate(180deg);
    transform: scale(1.1) rotate(180deg);
}

.pop .cancel i {
    font-size: 40px;
}

.pop .pop-form {
    background: white;
    padding: 25px;
    padding-top: 25px;
    margin-bottom: 20px;
    border-radius: 5px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .pop .pop-form {
        position: relative;
        top: 10%;
        width: 100%;
        height: auto;
        margin: auto;
        margin-bottom: 0px;
    }
}

.pop .pop-form::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0px;
    display: block;
    right: 0px;
    background: var(--primary2-color);
    z-index: -1;
    border-top-left-radius: 100%;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.pop .pop-form form input[name="seats"] {
    display: none;
}

.pop .pop-form form input[name="seats"]:checked ~ label {
    background: var(--primary-color);
}

.pop .pop-form form input[name="seats"]:checked ~ label p {
    color: white !important;
}

.pop .pop-form form input[name="seats"] ~ label {
    border-radius: 5px;
    padding: 15px;
    margin: 5px;
    -webkit-box-shadow: 0px 0px 3px #eaeaea;
    box-shadow: 0px 0px 3px #eaeaea;
    text-align: center;
    cursor: pointer;
}

.pop .pop-form form input[name="seats"] ~ label .book-box img {
    height: 50px;
    width: 50px;
    margin-right: 30px;
}

.pop .pop-form form .bike,
.pop .pop-form form .car {
    border-radius: 5px;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 3px #eaeaea;
    box-shadow: 0px 0px 3px #eaeaea;
    text-align: center;
    cursor: pointer;
}

.pop .pop-form form .bike .book-box img,
.pop .pop-form form .car .book-box img {
    height: 50px;
    width: 50px;
    margin-right: 30px;
}

.pop .pop-form form label {
    font-size: 14px;
    padding: 5px;
    color: var(--tertiary-color);
}

.pop .pop-form form .icon {
    position: absolute;
    height: 100%;
    top: 50%;
    left: 0px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 10px;
}

.pop .pop-form form .icon img.calendar {
    height: 25px;
    width: auto;
}

.pop .pop-form form .icon i.point {
    color: var(--secondary-color);
}

.pop .pop-form form .icon i.map-point {
    color: var(--quaternary-color);
}

.pop .pop-form form input {
    border-radius: 5px;
    padding: 10px 10px !important;
    padding-right: 10px !important;
    font-size: 14px;
}

.stat-app-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.subscriber {
    background: #4db098;
}

.subscriber .box {
    max-width: 50%;
    min-width: 500px;
    background: white;
    border-radius: 5px;
    margin: 30px auto;
    padding: 30px 50px;
}

@media (max-width: 575.98px) {
    .subscriber .box {
        padding: 15px 20px;
        min-width: 100%;
    }
}

@media (max-width: 400px) {
    .subscriber .box {
        padding: 10px 10px;
        min-width: 100%;
    }
}

.subscriber .box form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 400px) {
    .subscriber .box form {
        display: block;
    }
}

.subscriber .box form input[type="email"] {
    padding: 3px 5px;
    font-size: 16px;
    border: 1px solid #d3d3d3;
}

@media (max-width: 400px) {
    .subscriber .box form input[type="email"] {
        padding: 3px 5px !important;
    }
}

.subscriber .box form input[type="email"]:focus {
    outline: 1px solid #4db098 !important;
}

.subscriber .box form input[type="submit"] {
    width: 200px;
    margin: 0px 5px;
    background-color: #4db098;
    color: #fff;
    font-weight: bold;
    border: 1px solid transparent;
}

@media (max-width: 400px) {
    .subscriber .box form input[type="submit"] {
        padding: 3px 5px !important;
        width: 100%;
        margin: 0px;
        margin-top: 10px;
    }
}

.unsub {
    height: 100vh;
    background: #4db098;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.unsub .box {
    background: white;
    max-width: 500px;
    min-width: 300px;
    padding: 50px;
    margin: 0px auto;
    border-radius: 5px;
}

.unsub .box img {
    display: block;
    margin: 15px auto;
    height: 50px;
}

.unsub .box a {
    color: #4db098;
    font-weight: 600;
}

.owl-prev-position {
    position: absolute;
    top: 50%;
    left: 0px;
    color: white !important;
    font-size: 20px !important;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: var(--primary-color) !important;
    padding-right: 15px !important;
}

.owl-prev-position i::before {
    line-height: 0px;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-next-position {
    position: absolute;
    top: 50%;
    right: 0px;
    color: white !important;
    font-size: 20px !important;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background: var(--primary-color) !important;
    padding-right: 15px !important;
}

.owl-next-position i::before {
    line-height: 0px;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    bottom: 100px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #eaeaea;
    background: var(--primary-light-color);
    margin: 20px 5px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.owl-dots button.owl-dot.active {
    background: var(--primary-color);
    border: 1px solid #606060;
}

.owl-stage .active .heading-one {
    -webkit-animation: slide-head 1s ease-in-out 0s normal;
    animation: slide-head 1s ease-in-out 0s normal;
}

.owl-stage .active .banner-img img {
    opacity: 0;
    -webkit-animation: slide-img 0.8s ease-in-out 0s normal;
    animation: slide-img 0.8s ease-in-out 0s normal;
    opacity: 1;
}

.owl-prev-position-reviews {
    position: absolute;
    top: 50%;
    left: 0px;
    color: var(--primary-color) !important;
    font-size: 20px !important;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.owl-prev-position-reviews i::before {
    line-height: 0px;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-next-position-reviews {
    position: absolute;
    top: 50%;
    right: 0px;
    color: var(--primary-color) !important;
    font-size: 20px !important;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.owl-next-position-reviews i::before {
    line-height: 0px;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-prev-position2 {
    position: absolute;
    top: 50%;
    left: -30px;
    color: black !important;
    font-size: 40px !important;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    border-radius: 40px;
}

.owl-prev-position2 i::before {
    line-height: 0px;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-next-position2 {
    position: absolute;
    top: 50%;
    right: -30px;
    color: black !important;
    font-size: 40px !important;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    border-radius: 40px;
}

.owl-next-position2 i::before {
    line-height: 0px;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-next,
.owl-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-next span,
.owl-prev span {
    font-size: 14px;
}

.owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    bottom: 5px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: var(--secondary-color);
    margin: 20px 5px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.owl-dots button.owl-dot.active {
    background: var(--text-white);
    border: 1px solid white;
    width: 20px;
    height: 12px;
    border-radius: 10px;
}

.owl-stage .active .heading-one {
    -webkit-animation: slide-head 1s ease-in-out 0s normal;
    animation: slide-head 1s ease-in-out 0s normal;
}

.owl-stage .active .banner-img img {
    opacity: 0;
    -webkit-animation: slide-img 0.8s ease-in-out 0s normal;
    animation: slide-img 0.8s ease-in-out 0s normal;
    opacity: 1;
}

@-webkit-keyframes slide-head {
    0% {
        position: relative;
        left: 200px;
        opacity: 0;
    }
    75% {
        position: relative;
        left: 10px;
        opacity: 0.5;
    }
    100% {
        position: relative;
        left: 0px;
        opacity: 1;
    }
}

@keyframes slide-head {
    0% {
        position: relative;
        left: 200px;
        opacity: 0;
    }
    75% {
        position: relative;
        left: 10px;
        opacity: 0.5;
    }
    100% {
        position: relative;
        left: 0px;
        opacity: 1;
    }
}

@-webkit-keyframes slide-head-back {
    0% {
        position: relative;
        left: 0px;
        opacity: 1;
    }
    75% {
        position: relative;
        left: 10px;
        opacity: 0.5;
    }
    100% {
        position: relative;
        left: 200px;
        opacity: 0;
    }
}

@keyframes slide-head-back {
    0% {
        position: relative;
        left: 0px;
        opacity: 1;
    }
    75% {
        position: relative;
        left: 10px;
        opacity: 0.5;
    }
    100% {
        position: relative;
        left: 200px;
        opacity: 0;
    }
}

@-webkit-keyframes slide-botton {
    0% {
        opacity: 1;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    75% {
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes slide-botton {
    0% {
        opacity: 1;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    75% {
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes slide-img {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        opacity: 0;
    }
    60% {
        opacity: 0.3;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes slide-img {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        opacity: 0;
    }
    60% {
        opacity: 0.3;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/*# sourceMappingURL=main.css.map */

.addReadMore.showlesscontent .SecSec,
.addReadMore.showlesscontent .readLess {
    display: none;
}

.addReadMore.showmorecontent .readMore {
    display: none;
}

.addReadMore .readMore,
.addReadMore .readLess {
    font-weight: bold;
    margin-left: 2px;
    color: blue;
    cursor: pointer;
}

.addReadMoreWrapTxt.showmorecontent .SecSec,
.addReadMoreWrapTxt.showmorecontent .readLess {
    display: block;
}

.how2 ul {
    list-style: none;
    padding: 0;
}
.how2 li {
    padding-left: 1.3em;
}
.how2 li:before {
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.3em; /* same as padding-left set on li */
    color: #4ebfa3;
}
